You can use `AuthenticatorService` to access `route` string that represents the current `authState`. They can be one of:
- `idle`
- `setup`
- `signIn`
- `signUp`
- `confirmSignIn`
- `confirmSignUp`
- `setupTOTP`
- `forceNewPassword`
- `resetPassword`
- `confirmResetPassword`
- `verifyUser`
- `confirmVerifyUser`
- `signOut`
- `authenticated`
```html
Welcome back!
```
### Authentication Check
If you just need to check if you're authenticated or not, you can use the more straightforward `AuthenticatorService` to access the `authStatus` string. The `authStatus` string can represent the following states:
- `configuring`
- `authenticated`
- `unauthenticated`
> The `configuring` state only occurs when the `Authenticator` is first loading.
```html
Loading...
Welcome back!
```